// <copyright file="NoteBeamType.cs" company="Largo">
// Copyright (c) 2009 All Right Reserved
// </copyright>
// <author> vl </author>
// <email></email>
// <date>2009-01-01</date>
// <summary>Contains ...</summary>
namespace LargoBase.Notation {
    /// <summary>
    /// Note beam.
    /// </summary>
    public enum NoteBeamType {
        /// <summary> Note beam. </summary>
        Single,

        /// <summary> Note beam. </summary>
        Start,

        /// <summary> Note beam. </summary>
        Continue,

        /// <summary> Note beam. </summary>
        End,

        /// <summary> Note beam. </summary>
        ForwardHook,

        /// <summary> Note beam. </summary>
        BackwardHook
    }
}